1 //==============================================================================
2 // file : JavaClassRefectException.java
3 // project: Java Common Utility
4 //
5 // last change: date: $Date: 2003/09/10 09:22:14 $
6 // by: $Author: bitiboy $
7 // revision: $Revision: 1.1 $
8 //------------------------------------------------------------------------------
9 // copyright: GNU GPL Software License (see class documentation)
10 //==============================================================================
11 package com.justhis.util.exception;
12
13
14 /*
15 * $Id: JavaClassRefectException.java,v 1.1 2003/09/10 09:22:14 bitiboy Exp $
16 *
17 * Copyright 2003 Acai Software All Rights Reserved.
18 *
19 * This file JavaClassRefectException.java is part of the Java Common Utility.
20
21 * The Java Common Utility is free software; you can redistribute it and/or modify
22 * it under the terms of the GNU General Public License as published by
23 * the Free Software Foundation; either version 2 of the License, or
24 * (at your option) any later version.
25
26 * Java Common Utility is distributed in the hope that it will be useful,
27 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 * GNU General Public License for more details.
30
31 * You should have received a copy of the GNU General Public License
32 * along with the Java Common Utility; if not, write to the Free Software
33 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
34
35 * http://www.justhis.com http://ejb.cn
36 * CONTACT: email = webmaster@justhis.com superaxis@sohu.com
37 */
38
39 /***
40 * TODO
41 *
42 * @author <a href="http://blog.ejb.cn">acai</a>
43 * @version $Revision: 1.1 $
44 */
45 public class JavaClassRefectException extends Exception {
46 //~ Constructors -----------------------------------------------------------
47
48 /***
49 * Creates a new JavaClassRefectException object.
50 */
51 public JavaClassRefectException() {
52 super();
53 }
54
55 /***
56 * DOCUMENT ME!
57 *
58 * @param message
59 */
60 public JavaClassRefectException(String message) {
61 super(message);
62 }
63
64 /***
65 * DOCUMENT ME!
66 *
67 * @param cause
68 */
69 public JavaClassRefectException(Throwable cause) {
70 super(cause);
71 }
72
73 /***
74 * DOCUMENT ME!
75 *
76 * @param message
77 * @param cause
78 */
79 public JavaClassRefectException(String message, Throwable cause) {
80 super(message, cause);
81 }
82 }
83
84
85 /*
86 * $Log: JavaClassRefectException.java,v $
87 * Revision 1.1 2003/09/10 09:22:14 bitiboy
88 * *** empty log message ***
89 *
90 *
91 */
This page was automatically generated by Maven